home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 35 / PC Gamer IT CD 35 2-2.iso / utility / prokal63 / ProKalc.exe / 0 / RCDATA / TLOANFORM / TLOANFORM.txt
Text File  |  1998-09-10  |  10KB  |  428 lines

  1. object LoanForm: TLoanForm
  2.   Left = 396
  3.   Top = 216
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Loan'
  7.   ClientHeight = 425
  8.   ClientWidth = 281
  9.   Color = clSilver
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clBlack
  12.   Font.Height = -13
  13.   Font.Name = 'Arial'
  14.   Font.Style = [fsBold]
  15.   Scaled = False
  16.   OnActivate = FormActivate
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 96
  20.   TextHeight = 16
  21.   object LoanPayPerLabel: TLabel
  22.     Left = 6
  23.     Top = 164
  24.     Width = 119
  25.     Height = 23
  26.     AutoSize = False
  27.     Caption = 'Payment Period:'
  28.   end
  29.   object LoanNoPeriodLabel: TLabel
  30.     Left = 5
  31.     Top = 192
  32.     Width = 155
  33.     Height = 21
  34.     AutoSize = False
  35.     Caption = 'Number of Periods:'
  36.   end
  37.   object LoanGroup: TRadioGroup
  38.     Left = 0
  39.     Top = -18
  40.     Width = 281
  41.     Height = 177
  42.     Hint = 
  43.       'Select "Principal", "APR", "Payment", or "Down'#13'Payment" for calc' +
  44.       'ulation, given other values.|'
  45.     Ctl3D = True
  46.     ItemIndex = 2
  47.     Items.Strings = (
  48.       'Principal ($):'
  49.       'Annual Interest'
  50.       'Payment ($):'
  51.       'Down')
  52.     ParentCtl3D = False
  53.     ParentShowHint = False
  54.     ShowHint = True
  55.     TabOrder = 0
  56.     OnClick = LoanGroupClick
  57.   end
  58.   object IntPanel: TPanel
  59.     Left = 26
  60.     Top = 64
  61.     Width = 105
  62.     Height = 19
  63.     Alignment = taLeftJustify
  64.     BevelOuter = bvNone
  65.     Caption = 'Rate (APR) (%) :'
  66.     Color = clSilver
  67.     TabOrder = 1
  68.     object Label1: TLabel
  69.       Left = -88
  70.       Top = 29
  71.       Width = 29
  72.       Height = 16
  73.       Caption = 'Rate'
  74.     end
  75.   end
  76.   object LoanPrinEnter: TMemo
  77.     Left = 138
  78.     Top = 6
  79.     Width = 131
  80.     Height = 30
  81.     Hint = 'Enter amount of principal for loan.|'
  82.     Alignment = taRightJustify
  83.     Color = clBlack
  84.     Font.Charset = DEFAULT_CHARSET
  85.     Font.Color = clLime
  86.     Font.Height = -13
  87.     Font.Name = 'System'
  88.     Font.Style = [fsBold]
  89.     MaxLength = 13
  90.     ParentFont = False
  91.     ParentShowHint = False
  92.     ShowHint = True
  93.     TabOrder = 2
  94.     WordWrap = False
  95.     OnKeyUp = LoanPrinEnterKeyUp
  96.   end
  97.   object LoanAPREnter: TMemo
  98.     Left = 138
  99.     Top = 50
  100.     Width = 131
  101.     Height = 30
  102.     Hint = 'Enter annual % interest for loan.|'
  103.     Alignment = taRightJustify
  104.     Color = clBlack
  105.     Font.Charset = DEFAULT_CHARSET
  106.     Font.Color = clLime
  107.     Font.Height = -13
  108.     Font.Name = 'System'
  109.     Font.Style = [fsBold]
  110.     MaxLength = 6
  111.     ParentFont = False
  112.     ParentShowHint = False
  113.     ShowHint = True
  114.     TabOrder = 3
  115.     WordWrap = False
  116.     OnKeyUp = LoanAPREnterKeyUp
  117.   end
  118.   object LoanPayEnter: TMemo
  119.     Left = 138
  120.     Top = 84
  121.     Width = 131
  122.     Height = 30
  123.     Hint = 'Enter amount of periodic payments.|'
  124.     Alignment = taRightJustify
  125.     Color = clBlack
  126.     Font.Charset = DEFAULT_CHARSET
  127.     Font.Color = clLime
  128.     Font.Height = -13
  129.     Font.Name = 'System'
  130.     Font.Style = [fsBold]
  131.     MaxLength = 13
  132.     ParentFont = False
  133.     ParentShowHint = False
  134.     ShowHint = True
  135.     TabOrder = 4
  136.     WordWrap = False
  137.     OnKeyUp = LoanPayEnterKeyUp
  138.   end
  139.   object LoanDropDownBox: TComboBox
  140.     Left = 138
  141.     Top = 162
  142.     Width = 141
  143.     Height = 24
  144.     Hint = 'Select payment period.|'
  145.     Style = csDropDownList
  146.     ItemHeight = 16
  147.     Items.Strings = (
  148.       'Annual'
  149.       'Day (360)'
  150.       'Day (365)'
  151.       'Monthly'
  152.       'Quarterly'
  153.       'Semi-Annual'
  154.       'Weekly')
  155.     ParentShowHint = False
  156.     ShowHint = True
  157.     TabOrder = 5
  158.   end
  159.   object NoPerSpin: TSpinEdit
  160.     Left = 170
  161.     Top = 190
  162.     Width = 75
  163.     Height = 26
  164.     AutoSize = False
  165.     MaxLength = 3
  166.     MaxValue = 5000
  167.     MinValue = 1
  168.     TabOrder = 6
  169.     Value = 1
  170.     OnEnter = NoPerSpinEnter
  171.   end
  172.   object HelpButton: TBitBtn
  173.     Left = 202
  174.     Top = 390
  175.     Width = 75
  176.     Height = 26
  177.     Hint = 'Get help...'
  178.     ParentShowHint = False
  179.     ShowHint = True
  180.     TabOrder = 7
  181.     OnClick = HelpButtonClick
  182.     Kind = bkHelp
  183.   end
  184.   object LoanCloseButton: TBitBtn
  185.     Left = 120
  186.     Top = 390
  187.     Width = 75
  188.     Height = 26
  189.     Hint = 'Return to calculator.'
  190.     ParentShowHint = False
  191.     ShowHint = True
  192.     TabOrder = 8
  193.     OnClick = LoanCloseButtonClick
  194.     Kind = bkClose
  195.   end
  196.   object LoanSolveButton: TBitBtn
  197.     Left = 38
  198.     Top = 390
  199.     Width = 75
  200.     Height = 26
  201.     Hint = 'Solve for selected amounts given amounts'#13'entered.|'
  202.     Caption = '&Solve'
  203.     ParentShowHint = False
  204.     ShowHint = True
  205.     TabOrder = 9
  206.     OnClick = LoanSolveButtonClick
  207.   end
  208.   object LastPayShow: TMemo
  209.     Left = 142
  210.     Top = 220
  211.     Width = 131
  212.     Height = 24
  213.     Hint = 'Show amount of last payment.'
  214.     Alignment = taRightJustify
  215.     Color = clBlack
  216.     Font.Charset = DEFAULT_CHARSET
  217.     Font.Color = clLime
  218.     Font.Height = -13
  219.     Font.Name = 'System'
  220.     Font.Style = [fsBold]
  221.     ParentFont = False
  222.     ParentShowHint = False
  223.     ReadOnly = True
  224.     ShowHint = True
  225.     TabOrder = 10
  226.     Visible = False
  227.     WordWrap = False
  228.   end
  229.   object BalanceGroup: TGroupBox
  230.     Left = 2
  231.     Top = 222
  232.     Width = 277
  233.     Height = 163
  234.     Caption = 'Loan Balance Information'
  235.     Color = clGray
  236.     Font.Charset = DEFAULT_CHARSET
  237.     Font.Color = clBlue
  238.     Font.Height = -13
  239.     Font.Name = 'Arial'
  240.     Font.Style = [fsBold]
  241.     ParentColor = False
  242.     ParentFont = False
  243.     TabOrder = 11
  244.     object AfterPaymentLabel: TLabel
  245.       Left = 8
  246.       Top = 136
  247.       Width = 153
  248.       Height = 16
  249.       AutoSize = False
  250.       Caption = 'After Payment Number: '
  251.     end
  252.     object LoanBalanceLabel: TLabel
  253.       Left = 10
  254.       Top = 18
  255.       Width = 119
  256.       Height = 16
  257.       AutoSize = False
  258.       Caption = 'Principal Balance:'
  259.     end
  260.     object AccruedInterestLabel: TLabel
  261.       Left = 10
  262.       Top = 44
  263.       Width = 107
  264.       Height = 16
  265.       Caption = 'Accrued Interest:'
  266.     end
  267.     object IntinPayLabel: TLabel
  268.       Left = 10
  269.       Top = 74
  270.       Width = 96
  271.       Height = 16
  272.       Caption = 'Interest in Pmt:'
  273.     end
  274.     object PrinInPayLabel: TLabel
  275.       Left = 10
  276.       Top = 104
  277.       Width = 106
  278.       Height = 16
  279.       Caption = 'Principal in Pmt:'
  280.     end
  281.     object AfterPayNoSpin: TSpinEdit
  282.       Left = 170
  283.       Top = 132
  284.       Width = 75
  285.       Height = 26
  286.       Font.Charset = DEFAULT_CHARSET
  287.       Font.Color = clBlack
  288.       Font.Height = -13
  289.       Font.Name = 'Arial'
  290.       Font.Style = [fsBold]
  291.       MaxLength = 3
  292.       MaxValue = 365
  293.       MinValue = 0
  294.       ParentFont = False
  295.       TabOrder = 0
  296.       Value = 0
  297.       OnEnter = AfterPayNoSpinEnter
  298.     end
  299.     object LoanBalanceShow: TMemo
  300.       Left = 138
  301.       Top = 16
  302.       Width = 131
  303.       Height = 25
  304.       Hint = 'Show principal balance after entered'#13'number of payments.|'
  305.       Alignment = taRightJustify
  306.       Color = clBlack
  307.       Font.Charset = DEFAULT_CHARSET
  308.       Font.Color = clLime
  309.       Font.Height = -13
  310.       Font.Name = 'Arial'
  311.       Font.Style = [fsBold]
  312.       ParentFont = False
  313.       ParentShowHint = False
  314.       ReadOnly = True
  315.       ShowHint = True
  316.       TabOrder = 1
  317.       WordWrap = False
  318.     end
  319.     object AccruedInterestShow: TMemo
  320.       Left = 138
  321.       Top = 44
  322.       Width = 131
  323.       Height = 25
  324.       Hint = 'Show amount of interest paid as of payment'#13'number entered.|'
  325.       Alignment = taRightJustify
  326.       Color = clBlack
  327.       Font.Charset = DEFAULT_CHARSET
  328.       Font.Color = clLime
  329.       Font.Height = -13
  330.       Font.Name = 'Arial'
  331.       Font.Style = [fsBold]
  332.       ParentFont = False
  333.       ParentShowHint = False
  334.       ReadOnly = True
  335.       ShowHint = True
  336.       TabOrder = 2
  337.       WordWrap = False
  338.     end
  339.     object IntInPmtShow: TMemo
  340.       Left = 138
  341.       Top = 72
  342.       Width = 131
  343.       Height = 25
  344.       Hint = 'Show amount of interest in payment shown.|'
  345.       Alignment = taRightJustify
  346.       Color = clBlack
  347.       Font.Charset = DEFAULT_CHARSET
  348.       Font.Color = clLime
  349.       Font.Height = -13
  350.       Font.Name = 'Arial'
  351.       Font.Style = [fsBold]
  352.       MaxLength = 13
  353.       ParentFont = False
  354.       ParentShowHint = False
  355.       ReadOnly = True
  356.       ShowHint = True
  357.       TabOrder = 3
  358.       WordWrap = False
  359.     end
  360.     object PrinInPayShow: TMemo
  361.       Left = 138
  362.       Top = 100
  363.       Width = 131
  364.       Height = 25
  365.       Hint = 'Show amount of principal in payment number'#13'shown.|'
  366.       Alignment = taRightJustify
  367.       Color = clBlack
  368.       Font.Charset = DEFAULT_CHARSET
  369.       Font.Color = clLime
  370.       Font.Height = -13
  371.       Font.Name = 'Arial'
  372.       Font.Style = [fsBold]
  373.       ParentFont = False
  374.       ParentShowHint = False
  375.       ReadOnly = True
  376.       ShowHint = True
  377.       TabOrder = 4
  378.     end
  379.   end
  380.   object DownPayPanel: TPanel
  381.     Left = 21
  382.     Top = 140
  383.     Width = 91
  384.     Height = 17
  385.     BevelOuter = bvNone
  386.     Caption = 'Payment ($):'
  387.     Color = clSilver
  388.     TabOrder = 12
  389.   end
  390.   object DownPayEnter: TMemo
  391.     Left = 138
  392.     Top = 126
  393.     Width = 131
  394.     Height = 30
  395.     Hint = 'Enter amount of down payment, if any.|'
  396.     Alignment = taRightJustify
  397.     Color = clBlack
  398.     Font.Charset = DEFAULT_CHARSET
  399.     Font.Color = clLime
  400.     Font.Height = -13
  401.     Font.Name = 'System'
  402.     Font.Style = []
  403.     Lines.Strings = (
  404.       '0')
  405.     MaxLength = 13
  406.     ParentFont = False
  407.     ParentShowHint = False
  408.     ShowHint = True
  409.     TabOrder = 13
  410.     WordWrap = False
  411.     OnExit = DownPayEnterExit
  412.     OnKeyUp = DownPayEnterKeyUp
  413.   end
  414.   object LastPayRadio: TRadioButton
  415.     Left = 6
  416.     Top = 222
  417.     Width = 127
  418.     Height = 17
  419.     Hint = 'Calculate amount of last payment.'
  420.     Caption = 'Last Payment:'
  421.     ParentShowHint = False
  422.     ShowHint = True
  423.     TabOrder = 14
  424.     Visible = False
  425.     OnClick = LastPayRadioClick
  426.   end
  427. end
  428.